package org.adoxx.all2abl.service.webservice; import javax.xml.bind.annotation.XmlAccessType; import javax.xml.bind.annotation.XmlAccessorType; import javax.xml.bind.annotation.XmlElement; import javax.xml.bind.annotation.XmlType; /** *

Java-Klasse für convertALL2ABLResponse complex type. * *

Das folgende Schemafragment gibt den erwarteten Content an, der in dieser Klasse enthalten ist. * *

 * <complexType name="convertALL2ABLResponse">
 *   <complexContent>
 *     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
 *       <sequence>
 *         <element name="return" type="{http://www.w3.org/2001/XMLSchema}base64Binary" minOccurs="0"/>
 *       </sequence>
 *     </restriction>
 *   </complexContent>
 * </complexType>
 * 
* * */ @XmlAccessorType(XmlAccessType.FIELD) @XmlType(name = "convertALL2ABLResponse", propOrder = { "_return" }) public class ConvertALL2ABLResponse { @XmlElement(name = "return") protected byte[] _return; /** * Ruft den Wert der return-Eigenschaft ab. * * @return * possible object is * byte[] */ public byte[] getReturn() { return _return; } /** * Legt den Wert der return-Eigenschaft fest. * * @param value * allowed object is * byte[] */ public void setReturn(byte[] value) { this._return = value; } }